home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Transformers: Revenge of …he Game: Press Kit (USA)
/
Transformers - Revenge of the Fallen - The Game - Press Kit (USA).bin
/
Transformers.swf
/
scripts
/
fl
/
video
/
SkinErrorEvent.as
< prev
next >
Wrap
Text File
|
2009-06-19
|
570b
|
23 lines
package fl.video
{
import flash.events.ErrorEvent;
import flash.events.Event;
public class SkinErrorEvent extends ErrorEvent
{
public static const SKIN_ERROR:String = "skinError";
public function SkinErrorEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:String = "")
{
super(param1,param2,param3,param4);
}
override public function clone() : Event
{
return new SkinErrorEvent(type,bubbles,cancelable,text);
}
}
}